home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / misc / math / VintEval_src.lha / VintEval / Vint-Eng.teksten.S next >
Text File  |  1996-12-06  |  2KB  |  70 lines

  1. _CON    dc.b    'CON:0/0/640/198/VInts © 1996 by MVW',0
  2. _Mem    dc.b    'Memory : %ld bytes',10,0
  3. _weg    dc.b    'Warning : %d unused numbers have been discarded',10,0
  4. _LF    dc.b    10,0
  5. FG    MACRO
  6.     dc.b    27,'[3\1m'
  7.     endM
  8. _help
  9.  dc.b '----------- Help of VIntEval © 1996 by Maurice van Wanum -----------'
  10.  dc.b 10,10
  11.  dc.b 'VIntEval is a simple postfix evaluator for VInts. VInts are',10
  12.  dc.b 'unsigned integers with a variable length up to 315,000 digits.',10,10
  13.  dc.b 'The instruction format is '
  14.  FG    2
  15.  dc.b 'operand'
  16.  FG    1
  17.  dc.b ' ['
  18.  FG    2
  19.  dc.b 'operand'
  20.  FG    1
  21.  dc.b  '] '
  22.  FG    2
  23.  dc.b 'operator'
  24.  FG    1
  25.  dc.b ', eg. 4 5 +',10
  26.  dc.b 'Valid '
  27.  FG    2
  28.  dc.b 'operands'
  29.  FG    1
  30.  dc.b ' are numbers and the variables A, B and C.',10
  31.  dc.b 'Valid '
  32.  FG    2
  33.  dc.b 'operators'
  34.  FG    1
  35.  dc.b ' are : + - * / % = ! ^',10,10
  36.  dc.b 'Other instructions are :',10
  37.  dc.b 9,'M print available memory',10
  38.  dc.b 9,'? print this help-text',10
  39.  dc.b 9,"; don't print results (to save time)",10
  40.  dc.b 9,'>'
  41.  FG    2
  42.  dc.b 'filename'
  43.  FG    1
  44.  dc.b ' send output to '
  45.  FG    2
  46.  dc.b 'filename'
  47.  FG    1
  48.  dc.b 10
  49.  dc.b 9,'<'
  50.  FG    2
  51.  dc.b 'filename'
  52.  FG    1
  53.  dc.b ' get input from '
  54.  FG    2
  55.  dc.b 'filename'
  56.  FG    1
  57.  dc.b 10
  58.  dc.b 9,'x exit program or close input/output-file',10
  59.  dc.b 10
  60.  dc.b 'Send bugreports etc. to : M.van Wanum',10
  61.  dc.b 9,9,9,'  Julianastraat 26',10
  62.  dc.b 9,9,9,'  3361 XH Sliedrecht',10
  63.  dc.b 9,9,9,'  Holland',10
  64.  dc.b 9,9,' E-mail : M.vanWanum@et.tudelft.nl',10,0
  65.  
  66. _ong    dc.b    'Invalid expression',10,0
  67. _error    dc.b    'Evaluation failed',10,0
  68. _IOerr    dc.b    "I/O channel can't be opened",10,0
  69. _Prompt    dc.b    '>> ',0
  70.